Overlay Dockerfile from main on backfill runs#53
Merged
Conversation
Pre-existing tags (v1.1.0 .. v1.13.5) were created before the Dockerfile landed on main, so checking them out gives no Dockerfile and the build fails. On workflow_dispatch runs, fetch main and check out the current Dockerfile + .dockerignore over the tag's source tree. Push-triggered runs are unaffected -- they get the Dockerfile from the tag itself.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes the backfill path that failed in run 25728709517 with `open Dockerfile: no such file or directory`.
Old tags (v1.1.0 .. v1.13.5) predate the Dockerfile, so on `workflow_dispatch` we now fetch `main` and overlay the current `Dockerfile` + `.dockerignore` on top of the tag's source tree before building.
Push-triggered runs (future `v*` tags) are unaffected — they already contain the Dockerfile.
Note: PR validation cannot exercise the dispatch path (only push/PR triggers run on PR), so the test is to merge and re-dispatch v1.13.5.
🤖 Generated with Claude Code